Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HTTP digest authentication fails when request URI ends with '?' #3228

Closed
wants to merge 1 commit into from
Closed

HTTP digest authentication fails when request URI ends with '?' #3228

wants to merge 1 commit into from

Conversation

jcarlson
Copy link
Contributor

@jcarlson jcarlson commented Oct 5, 2011

Using Rails 3.1 and protecting some controller actions with HTTP digest authentication. Some actions accept filter parameters from the query string, and I have a button to "clear all filters". This 'reset' effectively sets the query string to empty, but leaves the '?' on the URI. (1)

In Chrome, this causes the HTTP authentication to fail, while Firefox silently removes the trailing '?' and continues.

Some code examples follow, but I'm not familiar enough with the HTTP specs to say if this is a bug in ActionController::HttpAuthentication::Digest#validate_digest_response or if the bug lies in Rack::Request#fullpath. However, I'm filing the issue here as a starting point for discussion.

Here's the gist of my controller

class SecureController
  before_filter :authenticate!

  def secret
    # do some secure stuff
  end

  def authenticate!
    authenticate_or_request_with_http_digest("my_realm") do |username|
      USERS[username]  # assume this is a username/digest hash defined elsewhere
    end
  end

end

STEPS TO REPRODUCE:

navigate to http://localhost:3000/secure/secret
=> prompted for username and password

enter valid user credentials
=> access granted, page renders

filter data with a query, e.g. http://localhost:3000/secure/secret?foo=bar
=> filtered data is returned

reset filter, e.g. http://localhost:3000/secure/secret? (2)
=> authentication fails, even with valid username/password

In Chrome, the filter reset leaves the URL with a trailing '?'. In FireFox, the '?' is removed. However, if I manually type in the address http://localhost:3000/secure/secret? in FireFox, the authentication failure is replicated.

  1. Actually, the filters and button are all generated automatically with Active Admin...
  2. The code to reset the filters is actually JavaScript and is as follows:
  $(".clear_filters_btn").click(function(){
    window.location.search = "";
    return false;
  });

@trevor
Copy link
Contributor

trevor commented Dec 19, 2011

related to #3159 ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants